home *** CD-ROM | disk | FTP | other *** search
/ Comix Games / Comix Games.iso / waldopc / waldopc.exe / waldopc.DXR / 00247.ls < prev    next >
Encoding:
Text File  |  1996-06-11  |  373 b   |  19 lines

  1. on mouseUp
  2.   global gamewinnum, socwin, targetwin, rallywin
  3.   set gamewinnum to 0
  4.   if socwin = 1 then
  5.     set gamewinnum to gamewinnum + 1
  6.   end if
  7.   if targetwin = 1 then
  8.     set gamewinnum to gamewinnum + 1
  9.   end if
  10.   if rallywin = 1 then
  11.     set gamewinnum to gamewinnum + 1
  12.   end if
  13.   if gamewinnum = 0 then
  14.     go("mainfirst1")
  15.   else
  16.     go("mainmenu")
  17.   end if
  18. end
  19.